home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / TCHK060.LZH / DEMODISK.C < prev    next >
C/C++ Source or Header  |  1988-01-15  |  506b  |  18 lines

  1. /* demodate.c  -  used for testing TCHK date conversions */
  2.  
  3. #include <howard.h>
  4. #include <ibm.h>
  5.  
  6. main()
  7. {
  8.     union REGS regs;
  9.     byte id;
  10.  
  11.     printf("DemoDisk.c  -  a demonstration of the disktype() of TCHK\n\n");
  12.  
  13.     for (drives=0; drives<26; drives++)     /* drives A - Z */
  14.         if ((id = disktype(drives)) != DISK_ERROR)    /* valid drive? */
  15.             printf("Drive %C: has an id byte of %X\n",'A'+drives,id);
  16.  
  17.     printf("\nSee ibm.h for explanations of the id byte\n");
  18. }